home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / tegl_c.exe / SAMPROGS.ZIP / SAMSHELL.C < prev    next >
Encoding:
C/C++ Source or Header  |  1990-05-13  |  313 b   |  20 lines

  1. /*  samshell.c  */
  2. /*  the minimum requirements for a program */
  3. /*  using TEGL Windows Toolkit II */
  4.  
  5. #include <graphics.h>
  6. #include "teglsys.h"
  7.  
  8. void main()
  9.   {
  10.     easytegl();
  11.  
  12.     /* insert your code here */
  13.  
  14.  
  15.  
  16.     /* then turn control over to the supervisor */
  17.  
  18.     teglsupervisor();
  19.   }
  20.